home *** CD-ROM | disk | FTP | other *** search
/ Georgia Wildfire Prevention / Georgia Wildfire Prevention.iso / pc / media / dirs / BackUp / Home.dir / 00010_Script_game counter < prev    next >
Text File  |  2002-10-15  |  430b  |  28 lines

  1. property total,lastone
  2.  
  3. on new me
  4.   total=0
  5.   lastone=11  
  6. end
  7.  
  8. on exitFrame me
  9.   if total=11 then
  10.     if soundbusy(1)=0 then
  11.       puppetsound 1,"sec4e14"
  12.       total=(-1)
  13.     end if
  14.   end if
  15.   if total=(-1) then
  16.     if soundbusy(1)=0 then
  17.       puppetsound 1,"clicknext"
  18.       sendsprite(25,#blink_on)
  19.       total=(-1000)
  20.     end if
  21.   end if
  22.   go the frame
  23. end
  24.  
  25. on item_clicked me
  26.   total=total+1
  27. end
  28.